$ grep -l "#swift tricks" ~/terhechte/journal/*.md
Posts tagged #swift tricks
posts 5 years 2 tag swift tricks
[ 2017 ]
02 · posts
2017-10-08
Taming SourceKitService for Less Xcode Memory Consumption
Taming SourceKitService for less Xcode memory consumption
2017-09-30
Value Types for Simple Difference Detection
Utilize value types to quickly determine a differences between two sets of data
[ 2016 ]
03 · posts
2016-04-23
Raw value initializers for enums with associated types
Once you add associated types to an enum the task of creating instances quickly becomes very repetitive. See how a simple trick can greatly simplify this
2016-04-14
Force optionals in multi-unwrapped 'guard let' or 'if let'
Mixing optional and non-optional functions in a guard is impossible and requires breaking up the lines. Here's a neat solution on how to circumvent this.
2016-03-29
Three tips for concise Swift using the Guard statement
Three quick examples for how you can use guard to write shorter and simpler code